ArrayList<String> to CharSequence[]

Posted by Laimoncijus on Stack Overflow See other posts from Stack Overflow or by Laimoncijus
Published on 2010-06-13T13:13:47Z Indexed on 2010/06/13 13:22 UTC
Read the original article Hit count: 146

Filed under:
|
|

What would be the easiest way to make a CharSequence[] out of ArrayList<String>?

Sure I could iterate through every ArrayList item and copy to CharSequence array, but maybe there is better/faster way?

© Stack Overflow or respective owner

Related posts about java

Related posts about arraylist